home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / win_u_z / wedl203.zip / DEMOBWCE.MAK < prev    next >
Text File  |  1992-07-30  |  2KB  |  81 lines

  1.  
  2. #-----------------------------------------------------------------------------#
  3. #                                                                             #
  4. #           WEDL(tm) - Windows Enhanced Dialog Library                        #
  5. #           Copyright (c) 1991-1992, Nemisoft, Inc.                           #
  6. #           All Rights Reserved                                               #
  7. #           Module:  DEMOBWCE.MAK                                             #
  8. #                                                                             #
  9. #-----------------------------------------------------------------------------#
  10.  
  11. # Define only one of these constants to 1
  12.  
  13. MSC7 = 0
  14. MSC6 = 0
  15. BCC3 = 1
  16. BCC2 = 0
  17.  
  18. #-----------------------------------------------------------------------------#
  19.  
  20. # Microsoft C/C++ 7.0
  21.  
  22. !if $(MSC7) == 1
  23. COMP = cl -c -AS -Gsw -Ox -Zpe -W3 -Fodemobwcc.obj
  24. LINK = link /NOD
  25. LIBS = libw bwcc slibcew
  26. RC1  = rc -r
  27. RC2  = rc -30
  28. !endif
  29.  
  30. #-----------------------------------------------------------------------------#
  31.  
  32. # Microsoft C 6.0
  33.  
  34. !if $(MSC6) == 1
  35. COMP = cl -c -AS -Gsw -Ox -Zpe -W3 -Fodemobwcc.obj
  36. LINK = link /NOD
  37. LIBS = libw bwcc slibcew
  38. RC1  = rc -r
  39. RC2  = rc
  40. !endif
  41.  
  42. #-----------------------------------------------------------------------------#
  43.  
  44. # Borland C++ 3.x
  45.  
  46. !if $(BCC3) == 1
  47. COMP = bcc -c -ms -w -w-par -WS -O2 -Z -Ic:\borlandc\include -odemobwcc.obj
  48. LINK = tlink /Twe /v /n /c /Lc:\borlandc\lib c0ws
  49. LIBS = cws cs bwcc import mathws
  50. RC1  = c:\borlandc\bin\rc -r -ic:\borlandc\include
  51. RC2  = c:\borlandc\bin\rc
  52. !endif
  53.  
  54. #-----------------------------------------------------------------------------#
  55.  
  56. # Borland C++ 2.0
  57.  
  58. !if $(BCC2) == 1
  59. COMP = bcc -c -ms -w -w-par -WS -O -Z -Ic:\borlandc\include -odemobwcc.obj
  60. LINK = tlink /Twe /v /n /c /Lc:\borlandc\lib c0ws
  61. LIBS = cwins cs bwcc import maths
  62. RC1  = c:\borlandc\bin\rc -r -ic:\borlandc\include
  63. RC2  = c:\borlandc\bin\rc
  64. !endif
  65.  
  66. #-----------------------------------------------------------------------------#
  67.  
  68. demobwcc.exe:   demobwcc.obj demo.def demobwcc.res demo.h demohelp.hlp
  69.     $(LINK) demobwcc,demobwcc,NUL,$(LIBS) wedl2e,demo
  70.     $(RC2) demobwcc.res
  71.  
  72. demobwcc.obj:   demo.c demo.h demohelp.h
  73.     $(COMP) demo.c
  74.  
  75. demobwcc.res:   demobwcc.rc demo.h demo.ico demo.bmp
  76.     $(RC1) demobwcc.rc
  77.  
  78. demohelp.hlp:   demohelp.hpj demohelp.rtf demohelp.h
  79.     hc demohelp.hpj
  80.  
  81.